home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / Manifest.dtd < prev    next >
Text File  |  2005-09-10  |  3KB  |  67 lines

  1. <!--
  2.  
  3.     OpenOffice.org - a multi-platform office productivity suite
  4.  
  5.     $RCSfile: Manifest.dtd,v $
  6.  
  7.     $Revision: 1.9 $
  8.  
  9.     last change: $Author: rt $ $Date: 2005/09/08 15:53:54 $
  10.  
  11.     The Contents of this file are made available subject to
  12.     the terms of GNU Lesser General Public License Version 2.1.
  13.  
  14.  
  15.       GNU Lesser General Public License Version 2.1
  16.       =============================================
  17.       Copyright 2005 by Sun Microsystems, Inc.
  18.       901 San Antonio Road, Palo Alto, CA 94303, USA
  19.  
  20.       This library is free software; you can redistribute it and/or
  21.       modify it under the terms of the GNU Lesser General Public
  22.       License version 2.1, as published by the Free Software Foundation.
  23.  
  24.       This library is distributed in the hope that it will be useful,
  25.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  27.       Lesser General Public License for more details.
  28.  
  29.       You should have received a copy of the GNU Lesser General Public
  30.       License along with this library; if not, write to the Free Software
  31.       Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  32.       MA  02111-1307  USA
  33.  
  34. -->
  35. <!ELEMENT manifest:manifest (manifest:file-entry+)>
  36. <!ATTLIST manifest:manifest xmlns:manifest CDATA #FIXED "http://openoffice.org/2001/manifest"> 
  37.  
  38. <!ELEMENT manifest:file-entry (manifest:encryption-data?)>
  39. <!-- manifest:size is usually only specified for encrypted entries -->
  40. <!ATTLIST manifest:file-entry
  41.     manifest:full-path CDATA #REQUIRED
  42.     manifest:size CDATA #IMPLIED
  43.     manifest:media-type CDATA #REQUIRED
  44. >
  45.  
  46. <!ELEMENT manifest:encryption-data (manifest:algorithm,manifest:key-derivation)>
  47. <!ATTLIST manifest:encryption-data
  48.     manifest:checksum-type CDATA #REQUIRED
  49.     manifest:checksum CDATA #REQUIRED >
  50. <!-- algorithm-name specifies the name of the algorithm used to encrypt
  51.      the stream, for example Blowfish 
  52.      manifest:initialisation-vector is stored encoded in Base64 -->
  53. <!ELEMENT manifest:algorithm EMPTY>
  54. <!ATTLIST manifest:algorithm
  55.     manifest:algorithm-name CDATA #REQUIRED
  56.     manifest:initialisation-vector CDATA #REQUIRED>
  57.  
  58. <!ELEMENT manifest:key-derivation EMPTY>
  59. <!-- manifest:key-derivation-name specifies the name of the algorithm used to derive
  60.      the key, for example PBKDF2 (see rfc 2898 ) 
  61.      manifest:salt is stored encoded in Base64 -->
  62. <!ATTLIST manifest:key-derivation
  63.     manifest:key-derivation-name CDATA #REQUIRED
  64.     manifest:salt CDATA #REQUIRED
  65.     manifest:iteration-count CDATA #REQUIRED>
  66.  
  67.